home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Mac-Source 1994 July
/
Mac-Source_July_1994.iso
/
C and C++
/
Utilities
/
stevie 3.10
/
ascii.h
< prev
next >
Wrap
Text File
|
1991-01-03
|
282b
|
14 lines
/* $Header: /nw/tony/src/stevie/src/RCS/ascii.h,v 1.2 89/03/11 22:42:03 tony Exp $
*
* Definitions of various common control characters
*/
#define NUL '\0'
#define BS '\010'
#define TAB '\011'
#define NL '\012'
#define CR '\015'
#define ESC '\033'
#define CTRL(x) ((x) & 0x1f)